home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 1_2002.ISO / Data / Zips / Program th234947252001.psc / frmDLL.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  2001-07-25  |  793 b   |  27 lines

  1. VERSION 5.00
  2. Begin VB.Form frmDLL 
  3.    Caption         =   "Form that uses the DLL with CreateObject()"
  4.    ClientHeight    =   810
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   6045
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   810
  10.    ScaleWidth      =   6045
  11.    ShowInTaskbar   =   0   'False
  12.    StartUpPosition =   3  'Windows Default
  13.    Visible         =   0   'False
  14. Attribute VB_Name = "frmDLL"
  15. Attribute VB_GlobalNameSpace = False
  16. Attribute VB_Creatable = False
  17. Attribute VB_PredeclaredId = True
  18. Attribute VB_Exposed = False
  19. Option Explicit
  20. Public MyDLL
  21. Private Sub Form_Load()
  22.     Set MyDLL = CreateObject("UpdateDLL.SimpleClass")
  23. End Sub
  24. Private Sub Form_Unload(Cancel As Integer)
  25.     Set MyDLL = Nothing
  26. End Sub
  27.